home *** CD-ROM | disk | FTP | other *** search
/ Digital Information Mana…ntial Guide to Multimedia / Digital Information Management - An Essential Guide to Multimedia.iso / Audacity / Nyquist / nyinit.lsp < prev    next >
Text File  |  2006-05-16  |  827b  |  33 lines

  1. (expand 5)
  2.  
  3. (load "xlinit.lsp" :verbose NIL)
  4. (setf *gc-flag* nil)
  5. (load "misc.lsp" :verbose NIL)
  6. (load "evalenv.lsp" :verbose NIL)
  7. (load "printrec.lsp" :verbose NIL)
  8.  
  9. (load "sndfnint.lsp" :verbose NIL)
  10. (load "seqfnint.lsp" :verbose NIL)
  11.  
  12. (load "dspprims.lsp" :verbose NIL)
  13. (load "nyquist.lsp" :verbose NIL)
  14. (load "follow.lsp")
  15.  
  16. (load "system.lsp" :verbose NIL)
  17.  
  18. (load "seqmidi.lsp" :verbose NIL)
  19. (load "nyqmisc.lsp" :verbose NIL)
  20.  
  21.  
  22. ;; set to T to get ANSI headers and NIL to get antique headers
  23. (setf *ANSI* NIL)
  24.  
  25. ;; set to T to generate tracing code, NIL to disable tracing code
  26. (setf *WATCH* NIL)
  27.  
  28. (format t "~%Nyquist -- A Language for Sound Synthesis and Composition~%")
  29. (format t "    Copyright (c) 1991-2003 by Roger B. Dannenberg~%")
  30. (format t "    Version 2.29~%~%")
  31.  
  32. (setf *gc-flag* t)
  33.